/* ================= BANNER ================= */
.web-banner{
position: relative;
  height: 350px;          /* 🔥 reduced height */
  margin-top: 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Image */
.web-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* image cut aagadhu */
}

/* Overlay */



.web-banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(127,90,240,0.35), rgba(0,0,0,0.85));
}

.web-banner h1 {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
}

.web-banner p {
  color: #d0d0ff;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}
/* ================= MAIN ================= */

.web-section {
  background: linear-gradient(180deg, #0b0b0f, #0f0f24);
  color: #fff;
  padding: 70px 0;
}

.lead-text {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d1d1;
}

/* ================= IMAGE EDITING – NEW DESIGN ================= */

.image-editing-new-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0b0b0f, #0f0f24);
  color: #fff;
}

/* Title */
.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #cfcfcf;
}

/* Card Layout */
.editing-card {
  /* background: linear-gradient(
    135deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  ); */
 background: linear-gradient(135deg, rgb(0 0 0 / 90%), rgb(58 104 109 / 85%), rgb(34 34 66));
  border-radius: 26px;
  padding: 35px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* Reverse layout */
.editing-card.reverse {
  flex-direction: row-reverse;
}

/* Image */
.editing-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.5s ease;
}

.editing-img:hover {
  transform: scale(1.06);
}

/* Content */
.editing-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.editing-content p {
  font-size: 15px;
  color: #d1d1d1;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .editing-img {
    height: 240px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 28px;
  }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .web-banner { height: 220px; }
  .web-banner h1 { font-size: 26px; }
  .getting-img-box { height: 260px; }
}
